/* Main Styles */
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
        }
        
        .banner-home {
            height: auto;
            padding-top: 200px;
        }
        
        /* Enhanced Quotes Slideshow */
        .quotes-container {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            background: #f8f9fa;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .quote-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            transform: scale(0.95);
            background-blend-mode: overlay;
            background-color: rgba(0,0,0,0.3);
        }
        
        .quote-slide.active {
            opacity: 1;
            z-index: 1;
            transform: scale(1);
        }
        
        .quote-content {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 50px;
            border-radius: 15px;
            max-width: 80%;
            text-align: center;
            animation: fadeIn 0.8s;
            transform: translateY(20px);
            transition: all 0.8s ease;
            border: 2px solid rgba(248, 213, 107, 0.5);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            background-image: url('images/quote-bg-pattern.png');
            background-blend-mode: overlay;
            backdrop-filter: blur(2px);
        }
        
        .quote-slide.active .quote-content {
            transform: translateY(0);
        }
        
        .quote-text {
            font-size: 2.2rem;
            font-family: 'Old Standard TT', serif;
            margin-bottom: 25px;
            font-weight: 400;
            line-height: 1.5;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
            position: relative;
            padding: 20px;
        }
        
        .quote-text::before, .quote-text::after {
            content: '"';
            position: absolute;
            font-size: 5rem;
            color: rgba(248,213,107,0.6);
            opacity: 0.8;
        }
        
        .quote-text::before {
            top: -30px;
            left: -15px;
        }
        
        .quote-text::after {
            bottom: -50px;
            right: -15px;
        }
        
        .quote-author {
            font-size: 1.5rem;
            font-style: italic;
            font-family: 'Montserrat', sans-serif;
            color: #f8d56b;
            text-shadow: 0 1px 3px rgba(0,0,0,0.7);
            margin-top: 25px;
            position: relative;
            display: inline-block;
            padding: 0 25px;
        }
        
        .quote-author::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 30px;
            height: 2px;
            background: #f8d56b;
            transform: translateX(-100%);
            margin-right: 10px;
        }
        
        .quote-author::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 30px;
            height: 2px;
            background: #f8d56b;
            transform: translateX(100%);
            margin-left: 10px;
        }
        
        /* Navigation Dots */
        .quote-nav {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
        }
        
        .quote-dot {
            display: inline-block;
            width: 15px;
            height: 15px;
            margin: 0 10px;
            background-color: rgba(255,255,255,0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .quote-dot:hover, .quote-dot.active {
            background-color: #f8d56b;
            transform: scale(1.3);
            border-color: white;
        }
        
        /* Quote Grid Section */
        .quote-title {
            text-align: center;
            margin: 50px 0 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #333;
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .quote-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #f8d56b, #d4a017);
            border-radius: 2px;
        }
        
        .quote-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.3rem;
            color: #666;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .quote-grid {
            padding: 40px 0 60px;
        }
        
        .quote-card {
            margin-bottom: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            height: 320px;
        }
        
        .quote-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }
        
        .quote-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .quote-card:hover .quote-card-overlay {
            opacity: 1;
        }
        
        .quote-card:hover img {
            transform: scale(1.1);
        }
        
        .view-quote-btn {
            color: white;
            border: 2px solid white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .view-quote-btn:hover {
            background: white;
            color: #333;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Modal Styles */
        .quote-modal .modal-dialog {
            max-width: 90%;
            height: 90vh;
            margin: 5vh auto;
        }
        
        .quote-modal .modal-content {
            height: 100%;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quote-modal .modal-body {
            padding: 0;
            text-align: center;
        }
        
        .quote-modal img {
            max-height: 85vh;
            max-width: 100%;
            object-fit: contain;
            box-shadow: 0 0 40px rgba(0,0,0,0.7);
            border-radius: 15px;
            border: 8px solid rgba(248,213,107,0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            color: white;
            font-size: 45px;
            opacity: 0.8;
            z-index: 1000;
            cursor: pointer;
            text-shadow: 0 0 15px black;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        
        /* Navigation Arrows */
        .quote-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 60px;
            cursor: pointer;
            z-index: 10;
            text-shadow: 0 0 15px black;
            opacity: 0.7;
            transition: all 0.3s;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(0,0,0,0.4);
        }
        
        .quote-arrow:hover {
            opacity: 1;
            background-color: rgba(0,0,0,0.7);
            transform: translateY(-50%) scale(1.1);
        }
        
        .quote-prev {
            left: 30px;
        }
        
        .quote-next {
            right: 30px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }
        
        /* Section background */
        .quote-section-bg {
            background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }
        
        .quote-section-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/quote-grid-bg.png') center/cover no-repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .quote-text {
                font-size: 1.8rem;
                padding: 15px;
            }
            
            .quote-author {
                font-size: 1.3rem;
            }
            
            .quote-content {
                padding: 30px;
                max-width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .quotes-container {
                height: 70vh;
                min-height: 400px;
            }
            
            .quote-text {
                font-size: 1.5rem;
            }
            
            .quote-author {
                font-size: 1.1rem;
            }
            
            .quote-content {
                padding: 20px;
            }
            
            .quote-title {
                font-size: 2.2rem;
            }
            
            .quote-card {
                height: 280px;
            }
            
            .quote-arrow {
                font-size: 40px;
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .quotes-container {
                height: 60vh;
                min-height: 350px;
            }
            
            .quote-text {
                font-size: 1.3rem;
            }
            
            .quote-author {
                font-size: 1rem;
            }
            
            .quote-title {
                font-size: 1.8rem;
            }
            
            .quote-subtitle {
                font-size: 1.1rem;
            }
            
            .quote-card {
                height: 220px;
            }
        }